home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 July
/
EnigmA AMIGA RUN 20 (1997)(G.R. Edizioni)(IT)[!][issue 1997-07 & 08][EAR-CD IV].iso
/
earcd
/
game
/
patch
/
bbghd.lha
/
BodyBlowsGalacticAGA
/
Install-BBGalactic
< prev
next >
Wrap
Text File
|
1996-12-27
|
1KB
|
66 lines
(set #CI_unit 0)
(set #CI_drive ("DF%ld:" #CI_unit))
;----------------------------
(set @default-dest
(askdir
(prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
(help @askdir-help)
(default @default-dest)
(disk)
)
)
(set #dest (tackon @default-dest @app-name))
(makedir #dest
(help @makedir-help)
(infos)
)
;----------------------------
(copyfiles
(help @copyfiles-help)
(source "BBGalactic")
(dest #dest)
)
(copyfiles
(help @copyfiles-help)
(source "BBGalactic.info")
(dest #dest)
)
(copyfiles
(help @copyfiles-help)
(source "bbghd.readme.info")
(dest #dest)
)
(copyfiles
(help @copyfiles-help)
(source "bbghd.readme")
(dest #dest)
)
(message ("\nInsert %s disk 1 into drive %s !" @app-name #CI_drive))
(if
(= 0 (run ("rob2file %ld \"%s/BBGalactic.disk1\" 2 159 48162937 OFFSET >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
("")
(abort "\"rob2file\" must be in your PATH !")
)
(message ("\nInsert %s disk 2 into drive %s !" @app-name #CI_drive))
(if
(= 0 (run ("rob2file %ld \"%s/BBGalactic.disk2\" 0 159 43532741 >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
("")
(abort "\"rob2file\" must be in your PATH !")
)
(exit)